home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 February / Chip_2004-02_cd1.bin / zkuste / konfig / download / hicpu / setup.exe / {app} / Reports / Arrow.js < prev    next >
Text File  |  2001-08-24  |  966b  |  33 lines

  1. //This is the master JavaScript file for the HTML Help documentation.
  2.  
  3.  
  4. function doSection (secNum){
  5.     //display the section if it's not displayed; hide it if it is displayed
  6.     if (secNum.style.display=="none"){secNum.style.display=""}
  7.     else{secNum.style.display="none"}
  8. }
  9.  
  10. function noSection (secNum){
  11.     //remove the section when user clicks in the opened DIV
  12.     if (secNum.style.display==""){secNum.style.display="none"}
  13. }
  14.  
  15. function doExpand(paraNum,arrowNum){
  16.     //expand the paragraph and rotate the arrow; collapse and rotate it back
  17.     if (paraNum.style.display=="none"){paraNum.style.display="";arrowNum.src="arrowc.gif"}
  18.     else{paraNum.style.display="none";arrowNum.src="arrowo.gif"}
  19. }
  20.  
  21. //These functions control the behavior of the homepage go arrows
  22. function liteGo(spNo){
  23.     spNo.style.background="#cc0033";
  24.     spNo.style.color="#FFFFFF";
  25. }
  26.  
  27. function liteOff(spNo){
  28.     spNo.style.background="transparent";
  29.     spNo.style.color="#000000";
  30. }
  31.  
  32.  
  33.